From 290286314c4c349d3ffef5e947d66e48142311fd Mon Sep 17 00:00:00 2001 From: hut Date: Fri, 12 Mar 2010 02:18:16 +0100 Subject: HACKING: updated --- HACKING | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'HACKING') diff --git a/HACKING b/HACKING index 84fb7539..85f44ed6 100644 --- a/HACKING +++ b/HACKING @@ -17,10 +17,10 @@ Patches Send patches, created with "git format-patch", to the email adress - hut@lavabit.com + romanz@lavabit.com If you plan to do major changes, or many changes over time, I encourage -you to create a fork on GitHub or Gitorious. +you to create a fork on GitHub, Gitorious or any other site. Common Changes @@ -40,16 +40,17 @@ The setting is now accessible at self.settings.my_option, assuming is a "SettingsAware" object. * Change commands: -ranger/commands.py +ranger/defaults/commands.py * Create aliases for commands: -In ranger/commands.py +In ranger/defaults/commands.py at the bottom, write something like: alias(exit=quit) * Adding colorschemes: Copy ranger/colorschemes/default.py to ranger/colorschemes/myscheme.py -and modify it according to your needs. -In ranger/defaults/options.py, change +and modify it according to your needs. Alternatively, mimic the jungle +colorscheme. It subclasses the default scheme and just modifies a few things. +In ranger/defaults/options.py (or ~/.ranger/options.py), change colorscheme = colorschemes.default to: colorscheme = colorschemes.myscheme @@ -59,7 +60,7 @@ change the hidden_filter regular expression. * Change the key map: Modify ranger/defaults/keys.py. This should be self-explanatory. -Check out ranger/actions.py for the most common actions, of course +Check out ranger/core/actions.py for the most common actions, of course you can also use your own functions. * Change the file type => application associations: -- cgit 1.4.1-2-gfad0 e='grep'>log msg
blob: 694265261df2a8c6f79850487659903554a9303c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "clinte"
version = "2.0.0"
authors = ["Ben Morrison <ben@gbmor.dev>"]
edition = "2018"
description = "CLI note posting system for shared UNIX boxes."
repository = "https://github.com/gbmor/clinte"
readme = "README.md"
keywords = ["social", "unix", "notes", "messages"]
categories = ["command-line-utilities"]
license = "ISC"

[badges]
travis-ci = { repository = "gbmor/clinte", branch = "master" }
codecov = { repository = "gbmor/clinte", branch = "master", service = "github" }
maintenance = { status = "stable" }

[dependencies]
chrono = "^0.4"
fd-lock = "^1.1"
lazy_static = "^1.4"
log = "^0.4"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
simplelog = "^0.7"
users = "^0.9"

[dependencies.clap]
version = "^2.33"
default-features = false
features = [ "suggestions", "color" ]

[profile.release]
opt-level = 3
debug = false
lto = true
debug-assertions = false
panic = 'abort'
incremental = true
overflow-checks = false